home *** CD-ROM | disk | FTP | other *** search
Delphi Package | 2000-02-02 | 1.3 KB | 56 lines |
- package EFieldsEditor;
-
- {
- Author : Guy Smith-Ferrier (based on a solution by Brian Long)
- Date : February 2000
- Description:
- This package contains an Enhanced Fields Editor for the purposes of allowing
- Delphi 5 developers to customize the control classes which are created when
- dragging and dropping fields from the Fields Editor. For a more complete
- description see the associated TXT file.
- }
-
- {$R *.RES}
- {$ALIGN ON}
- {$ASSERTIONS ON}
- {$BOOLEVAL OFF}
- {$DEBUGINFO ON}
- {$EXTENDEDSYNTAX ON}
- {$IMPORTEDDATA ON}
- {$IOCHECKS ON}
- {$LOCALSYMBOLS ON}
- {$LONGSTRINGS ON}
- {$OPENSTRINGS ON}
- {$OPTIMIZATION ON}
- {$OVERFLOWCHECKS OFF}
- {$RANGECHECKS OFF}
- {$REFERENCEINFO ON}
- {$SAFEDIVIDE OFF}
- {$STACKFRAMES OFF}
- {$TYPEDADDRESS OFF}
- {$VARSTRINGCHECKS ON}
- {$WRITEABLECONST ON}
- {$MINENUMSIZE 1}
- {$IMAGEBASE $400000}
- {$DESCRIPTION 'Enhanced Fields Editor'}
- {$DESIGNONLY}
- {$IMPLICITBUILD OFF}
-
- requires
- vcl50,
- dcldb50,
- dclbde50,
- dclado50,
- dclmid50;
-
- contains
- EBDEFieldsEditor in 'EBDEFieldsEditor.pas',
- BDEReg2 in 'BDEReg2.pas',
- EFECommon in 'EFECommon.pas',
- EDSFieldsEditor in 'EDSFieldsEditor.pas',
- EADOFieldsEditor in 'EADOFieldsEditor.pas',
- ECDSFieldsEditor in 'ECDSFieldsEditor.pas',
- MidReg2 in 'MidReg2.pas';
-
- end.
-